OBJ file - translation to English
Diclib.com
Online Dictionary

OBJ file - translation to English

FILE CONTAINING RELOCATABLE FORMAT MACHINE CODE
Object code file format; Object file format; Object file formats; Object format; Object files; Object File; OBJ file; Object module; Objective Code; Executable format; Executable file type; Executable type; .o; .o file; .so file

OBJ file         
Cartella OBJ (cartella di oggetti prodotta tramite compilazione)
file management         
  • The Alto Neptune file manager program
  • In Cubix, files sharing the same attributes are represented by cubes in a 3D environment.
  • [[File System Visualizer]], one example of a 3D file manager
  • Miller Column]] browser from [[GNUstep]] is a type of Navigational file manager.
  • [[Midnight Commander]], an orthodox file manager with a [[text-based user interface]]
  • The [[Nautilus file manager]] had a spatial mode, which was removed with the arrival of GNOME (and with it Nautilus) version 3.x.  Each of these windows displays an open directory.
  • Nemo]]
  • File Manager]] in [[Windows 10]], displaying the contents of partition X:
COMPUTER PROGRAM THAT PROVIDES A USER INTERFACE TO WORK WITH FILE SYSTEMS
File browser; Computer file management; Orthodox file manager; Navigational file manager; File managers; Orthodox File Managers; Orthodox File Manager; VDFM; Save As; Filemanager; File Manager; File management; Document browser; Commander (computing); Norton Commander clone; Dual-pane file manager; 3D file manager; File management application; File processing; File system browser
direzione di schede (programma di servizio per schede, per esempio per cancellare, aggiungere, copiare)
file format         
  • wav-file: 2.1 Megabytes.
  • ogg-file: 154 kilobytes.
FORMALIZED STRUCTURE OF INFORMATION STORED ON A COMPUTER
File Formats; Filetype; File type; Bytestream format; File formats; Computer file formats; Computer file format; Binary signature; File format identification
Formato di cartella (il modo di registrazione dei dati in una cartella)

Definition

OBJ
Joseph Goguen 1976. A family of declarative "ultra high level" languages. Abstract types, generic modules, subsorts (subtypes with multiple inheritance), pattern-matching modulo equations, E-strategies (user control over laziness), module expressions (for combining modules), theories and views (for describing module interfaces). For the massively parallel RRM (Rewrite Rule Machine). ["Higher-Order Functions Considered Unnecessary for Higher-Order Programming", J.A. Goguen, in Research Topics in Functional Programming].

Wikipedia

Object file

An object file is a computer file containing object code, that is, machine code output of an assembler or compiler. The object code is usually relocatable, and not usually directly executable. There are various formats for object files, and the same machine code can be packaged in different object file formats. An object file may also work like a shared library.

In addition to the object code itself, object files may contain metadata used for linking or debugging, including: information to resolve symbolic cross-references between different modules, relocation information, stack unwinding information, comments, program symbols, debugging or profiling information. Other metadata may include the date and time of compilation, the compiler name and version, and other identifying information.

The term "object program" dates from at least the 1950s:

A term in automatic programming for the machine language program produced by the machine by translating a source program written by the programmer in a language similar to algebraic notation.

A computer programmer generates object code with a compiler or assembler. For example, under Linux, the GNU Compiler Collection compiler will generate files with a .o extension which use the ELF format. Compilation on Windows generates files with a .obj extension which use the COFF format. A linker is then used to combine the object code into one executable program or library pulling in precompiled system libraries as needed.